Me too!!!!

August 3, 2004 by Mark Handford

I am currently trying to do this aswell - please let me know if you manage to do it.....

Thanks,

Mark

Here is how I found to do it.

August 19, 2004 by Jeff Thurston

<form name="theform">
<select name="from" onChange="passvalue()">
<option value="05/05/05">05/05/05
<option value="06/06/06">06/06/06
<option value="07/07/07">07/07/07
</select>
<P><input type="text" name="to">
</form>

<script language="javascript">
function passvalue(){
document.theform.to.value=document.theform.from[document.theform.from.selectedIndex].value;
}
</script>