it is a little unclear what you have exactly on the ASP page. But is no
problem to use a SELECT in a table:
example.asp:
dim cField1
cField1 = Request.Form("field1")
Response.Write "<form method=post action=example.asp>"&_
"<table><tr><td><select name=field1>"
Response.Write "<option "
if cField1 = "Yes" then Response.Write " selected"
Response.Write ">Yes<option"
if cField1 = "No" then Response.Write " selected"
Response.Write ">No</td></tr>"
response.write "</table><input type=submit></form>