I want to do pagination using classic asp with dropdown select

hi all,
any body can send me code or link how to implement pagination using dropdownlist if i select 10 10 records should show and if i select 20 20 records should show so below is my code with pagination but not with dropdown if any body can do plesae help me or send me any links

<%@ EnableSessionState=False Language=VBScript %>
<%
set conn = Server.CreateObject("ADODB.Connection")
conn.Open "Provider=SQLOLEDB; Data Source=10.121.253.246;Initial Catalog=Test;User ID=ecnet;Password=ecnetadmin123"
set rs = Server.CreateObject("ADODB.Recordset")
rs.CursorLocation = 3 ' adUseClient
rs.Open "Select * from employee", conn

rs.PageSize = 2
intPageCount = rs.PageCount

Select Case Request("Action")
case "<<"
intpage = 1
case "<"
intpage = Request("intpage")-1
if intpage < 1 then intpage = 1
case ">"
intpage = Request("intpage")+1
if intpage > intPageCount then intpage = IntPageCount
Case ">>"
intpage = intPageCount
case else
intpage = 1
end select



%>



<HTML>
<HEAD>
<META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
<TITLE>ASP & ADO Paging</TITLE>
</HEAD>
<BODY >

<%
rs.AbsolutePage = intPage
For intRecord = 1 To rs.PageSize
Response.Write rs.Fields("empID") & " "
Response.Write rs.Fields("FirstName") & " "
Response.Write rs.Fields("LastName") &" "
Response.Write rs.Fields("Address") & "<br>"
rs.MoveNext
If rs.EOF Then Exit For

Next

rs.Close
set rs = Nothing
conn.Close
set conn = nothing



%>
<form name="MovePage" action="Pagination.asp" method="post">
<input type="hidden" name="intpage" value="<%=intpage%>">
<input type="submit" name="action" value="<<">
<input type="submit" name="action" value="<">
<input type="submit" name="action" value=">">
<input type="submit" name="action" value=">>">


<select id="selRow" name="selRow">
<option value="" selected>-- Select --</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
</select>
Page: <%=Intpage & " of " & intpagecount%>
</form>

</BODY>
</HTML>