<select id = "dropDown" name="dropDown">
<option value="Nothing"></option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="***">Other</option>
</select>
I want to write a function, that, when 'Other' is selected- a textbox shows up next to the drop down.
Any thoughts?
<option value="Nothing"></option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="***">Other</option>
</select>
I want to write a function, that, when 'Other' is selected- a textbox shows up next to the drop down.
Any thoughts?