Hola vlah,
mira a ver si es esto lo que estàs intentado hacer:
<html>
<script>
function redireccionar()
{
document.location.href="uno.htm?id="+document.form 1.option.value
}
</script>
<body>
<form name="form1">
<Select name="option" class="letranormalazul" onchange="redireccionar()">
<option >Seleccione...
<%while not Atabla6.eof%>
<option value=<%=Atabla6("Clave_Opcion")%>>
<%=Atabla6("Tipo_Opcion")%></option >
<%Atabla6.movenext
wend%>
</select>
</form>
</body>
</html>

Salu2