You have to do something like this:
<SELECT NAME="form_state">
<OPTION VALUE="CA" <? if ($form_state == "CA") { ?>SELECTED<? }?> >California</OPTION>
<OPTION VALUE="NV" <? if ($form_state == "NV") { ?>SELECTED<? }?> >Nevada</OPTION>
<OPTION VALUE="FL" <? if ($form_state == "FL") { ?>SELECTED<? }?> >Florida</OPTION>
</SELECT>
You get the idea. You have to conditionally add the 'SELECTED' attribute depending on what they had selected before you redisplayed the page.
-- Rich Rijnders
-- Irvine, CA US