Sorry, Karl: perhaps I wasn't clear. Given a select structure like:
<select name="optionchoice">
<option value="A" selected>A</option>
<option value="B">B</option>
<option value="C">C</option>
<option value="D">D</option>
</select>
and a value of "B", how do I automagically show the "B" selection at run time? Without rewriting the above with "selected" for the "B" choice?
I certainly searched on my own for the answer, but no luck.....
Ross