No, es más "facil" hacerlo desde ASP:
Código:
<%
dim datos
sql = "select id, nombre from gente"
set rs = con.execute(sql)
if not rs.eof then datos = rs.getrows
%>
<select name="gente">
<%
if isarray(datos) then
for i = 0 to ubound(datos,2)
%>
<option value="<%= datos(0,i) %>"><%= datos(1,i) %></option>
<%
next
end if
%>
</select>
Espero te ayude, saludos!