<td BGCOLOR="#0000FF" width="13%" height="10"><b><center><FONT COLOR="white" FACE="ARIAL" SIZE=3>Punto Tactico: </FONT>
</td>
<td BGCOLOR="#C0C0C0"><center>
<select name="Punto_Tactico" style='width:300px; height:35px; color:black;'>
<%
set rs_pTactico = server.CreateObject("ADODB.Recordset")
sql_pTactico = "SELECT * FROM Cat_Punto_Tactico"
rs_pTactico.Open sql_pTactico,conn,3,3
%>
<option><%=rs_pTactico.fields("Punto_tactico")%></option>
</select> </td>
rs_pTactico.Open sql_pTactico, conn
do while not rs_pTactico.eof
response.write "<option>"&rs_pTactico("Punto_tactico")&"</option>"
rs_pTactivo.moveNext
loop
rs_pTactico.close