posted 22 years ago
Hi there,
If I have a select drop down list and a hidden text field. I want the hidden field to show as a text field when I select option2 in the select box, for example:
<form name="form1">
<select name ="select1">
<option value="1" selected> option1
<option value="2"> option2
<option value="3"> option3
</select>
<input type ="hidden" name="input1">
</form>
Can someone show me how to do it?