One of the reported problems is a <form> I use for a navigation/site map drop-down list (and, yes, Darin and pandy, I have alternative html links!!).
My code is based on the following (showing only the 1st and last few lines of nearly 90 lines):
CODE
<form>
<p style="text-align: center"><select name="menu1" size="1"
onchange="location.href=(form.menu1.options[form.menu1.selectedIndex].value)"
class="sansb" style="font-size: small; background: #FFFFFF; color: #000000">
<option value="#">------ Site Map ------</option>
<option value="index.html">Home</option>
...
...
<option value="shortstories2.htm">Short Stories</option>
<option value="#"> </option>
</select> </p>
</form>
<p style="text-align: center"><select name="menu1" size="1"
onchange="location.href=(form.menu1.options[form.menu1.selectedIndex].value)"
class="sansb" style="font-size: small; background: #FFFFFF; color: #000000">
<option value="#">------ Site Map ------</option>
<option value="index.html">Home</option>
...
...
<option value="shortstories2.htm">Short Stories</option>
<option value="#"> </option>
</select> </p>
</form>
I am validating on HTML 4.01 transitional and UTF-8 charset and get the following error:
QUOTE
<form>
^
Error: required attribute ACTION not specified
^
Error: required attribute ACTION not specified
I have read up about the actions expected following a FORM element, but cannot see which action to choose (if any).
Any assistance, as usual, gratefully received.

