Hello all,

I've created a web form that will post to an Access database. All of
the form fields correctly save to the database upon submit using:

<td><font face="MS Gothic">Site:</td><td><INPUT TYPE="TEXT"
NAME="Site"></td>

Below is what I have for one of the drop-down menus. Could anyone help
with how to add the VB code to this so that the selected menu item
will submit to the database as well?

<td><font face="MS Gothic">Division:</td>

<td>
<select name="select">
<option>Select</option>
<option>CHC</option>
<option>Corp</option>
<option>Legal</option>
<option>AHG</option>
<option>PGM</option>
<option>PGP</option>
<option>PGRD</option>
</select>
</td>

Much thanks,

Les