<select name="wmonth">
<option value="1" <% if month(date())=1 then response.write" selected" END IF %>>1 </option>
<option value="2" <% if month(date())=2 then response.write" selected" END IF %>>2 </option>
<option value="3" <% if month(date())=3 then response.write" selected" END IF %>>3 </option>
<option value="4" <% if month(date())=4 then response.write" selected" END IF %>>4 </option>
<option value="5" <% if month(date())=5 then response.write" selected" END IF %>>5 </option>
<option value="6" <% if month(date())=6 then response.write" selected" END IF %>>6 </option>
<option value="7" <% if month(date())=7 then response.write" selected" END IF %>>7 </option>
<option value="8" <% if month(date())=8 then response.write" selected" END IF %>>8 </option>
<option value="9" <% if month(date())=9 then response.write" selected" END IF %>>9 </option>
<option value="A" <% if month(date())=10 then response.write" selected" END IF %>>10 </option>
<option value="B" <% if month(date())=11 then response.write" selected" END IF %>>11 </option>
<option value="C" <% if month(date())=12 then response.write" selected" END IF %>>12 </option>
</select>
<select name="m">
<%
for i=1 to 12
%>
<option value="<% =i %>"<% if i=month(date()) then response.write" selected"%>><% =i %></option>
<%
next
%>
</select>
<select name="m">
<%
for i=1 to 12
%>
<option value="<% =i %>"<% if i=month(date()) then response.write" selected"%>><% =i %></option>
<%
next
%>
</select>