Not sure I understand. What you are referring to is called a select. Here is a very simple one with your content:
HTML Code:
<select>
<option>Philippines
<option>hungary
<option>italy
<option>ukraine
</select>
Now, what value do you want to test? The value of the words? A value that you might add? :
HTML Code:
<select>
<option value="phil.htm">Philippines
<option>hungary
<option>italy
<option>ukraine
</select>
Or something else? Do you really mean test the value or do you mean retrieve the value? Let's get these basics settled first.
Bookmarks