Hallo,
Hat wohl nichts mit Deinem Problem zu tun, ist aber trotzdem falsch:
<option selected="hans" value="hans">hans</option>
^^^^^^^^^^^^^^^^
Es muss heissen:
<option selected="selected" value="hans">
(Ist korrektes HTML und auch XHTML-konform.)
Veraltete, schlechtere Alternative:
<option selected value="hans">
mfg
Thomas