How to convert an input statement to drop down statement.
Hi:
I am trying to use drop down or input type = radio button menu instead of input type = text.
Attached is my sample code but for some reason my form which send the value to a servlet isn't working properly.
The first input = text is working
<td>Search Categories</td>
<td><input type="text" name="search_categories" value="UK"/></td>
Replacing the input with drop down or radio isnt working.
<td>Geographic Locations</td>
<td>
<INPUT type="radio" name="search_categories" value=USA> USA
<INPUT type="radio" name="search_categories" value=UK> UK
</td>
<td>Geographic Locations</td>
<td><select name="search_categories">
<option value=USA>USA</option>
<option value=UK>UK</option>
<option value=AP>AP</option>
</select> </td>
Is there any coding error here?
Thanks for your support.

