<p><select size="1" name="D1">
<option>Michigan</option>
<option>Ohio</option>
<option>Florida</option>
</select><input type="submit" value="Submit" name="B1"><input type="reset" value="Reset" name="B2"></p>
</form>
</body>
</html> <%
'Declare all variables
dim variable
'Create the Session Object
Session("State") = request("D1")
'Assign a local value to the Session object
variable = Session("State")
response.write variable
'Kills the Session object
session.abandon
%>
<html>
<head>
<title></title>
</head>
<body>
</body>
</html>