Yo lo dejaría así:
Código PHP:
<%@LANGUAGE="VBSCRIPT"%>
<%
fecha = rs("canfecnacimiento")
If IsDate(fecha) = true Then
dia = Cint(day(fecha))
mes = Cint(month(fecha))
anio = Cint(year(fecha))
End if
meses = "Enero,Febrero,Marzo,Abril,Mayo,Junio,Julio,Agosto,Septiembre,Octubre,Noviembre,Diciembre"
matriz_mes = split(meses, ",")
%>
<form name="forms" method="get">
<select name="dia" id="dia">
<% For i = 1 to 31 %>
<option <% If dia = i Then response.write ("selected") End if %> value="<%= i %>"><%= i %></option>
<% Next %>
</select>
<select name="mes" id="mes">
<% For i = 1 to 12 %>
<option <% If mes = i Then response.write ("selected") End if %> value="<%= i %>"><%= matriz_mes(i-1) %></option>
<% Next %>
</select>
<select name="ano" id="select">
<% For i = 1950 to 1990 %>
<option <% If anio = i Then response.write ("selected") End if %> value="<%= i %>"><%= i %></option>
<% Next %>
</select>
</form>