I have the answer.
First I created a list/menu and associated my database item
to it.
Next I created a jump-menu.
I then used the database code from the list/menu and inserted
it into the jump-menu.
Finally I added the option value of the page I wanted to
load.
Here’s my final code…
<select name="jumpMenu" class="SmallBLACK" id="jumpMenu"
onChange="MM_jumpMenu('parent',this,0)">
<option
value="conPROD.asp?REF=<%=(rsP.Fields.Item("printDELLref").Value)%>">Select
your printer....</option>
<%
While (NOT rsP.EOF)
%>
<option
value="conPRINTdetail.asp?REF=<%=(rsP.Fields.Item("printDELLref").Value)%>"><%=(rsP.Fields.Item("printPRODUCT").Value)%></option>
<%
rsP.MoveNext()
Wend
If (rsP.CursorType > 0) Then
rsP.MoveFirst
Else
rsP.Requery
End If
%>
</select>