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.

[1052 byte] By [Gyana] at [2007-11-26 21:54:29]
# 1
What's the error you're receiving or what's the part that isn't working as you assume it should?
benubacha at 2007-7-10 3:49:23 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...