Is there a way to access the value of an HTML dropdown box from within Classic ASP?

Example:

<select name="Location" id="Location">
<option selected="selected">Select Location</option>
<option value="Mechanicsburg">Mechanicsburg</option>
<option value="Carlisle">Carlisle</option>
<option value="Enola">Enola</option>
<option value="Harrisburg">Harrisburg</option>
</select>

Now, is there a way to access what the user selects from within ASP? I want to change where a form is sending based on which option the user selects.

Thanks all.