I have a form that has a few select boxes and have been unsuccessful
at getting them to validate on change, or tabbing away from the field.
The first field is a month field, and the first option is blank the
select is designed like so
<select name="dobmonth" id="dobmonth" class="inputNormal" style="width:
199px;">
        <option value="">Month</option>
        <option value="1">January</option>
        <option value="2">February</option>
        <option value="3">March</option>
        <option value="4">April</option>
        <option value="5">May</option>
        <option value="6">June</option>
        <option value="7">July</option>
        <option value="8">August</option>
        <option value="9">September</option>
        <option value="10">October</option>
        <option value="11">November</option>
        <option value="12">December</option>
</select>
i have tried multiple ways to no success any help would be greatly
appreciated.

Reply via email to