JSP
I have say this code in List Box
<select name="age">
<option>0-20
<option>21-30
<option>over 30</option>
</select>
And I want to select (display) 21-30 on HTML from the list what should be done do that ?
Note I already have the list populated, I know how to change the selected option while i amd filling the list,
What I don't know is how to display or highlight particular value on already popoulated list

