Mike, thanks for the reply, I placed the code you gave me into my page. But I'm still having the same problem, the page reloads and the jump menu resets to the first option.
here is my current code. I appreciate you're help.
Jovix
<select name="fldSeries" onChange="MM_jumpMenu('parent',this,0)">
<option value="">Choose One</option>
<%
While (NOT rsSearchSeries.EOF)
If (rsSearchSeries.Fields.Item("PartType"

.Value = Request("fldSeries"

) Then
strSelected = " selected"
Else
strSelected = ""
End If
%>
<option value="search2.asp?Condition=<%=(rsSearchSeries.Fields.Item("PartType"

.Value)%>" <%= strSelected %>><%=(rsSearchSeries.Fields.Item("PartType"

.Value)%></option>
<%
rsSearchSeries.MoveNext()
Wend
If (rsSearchSeries.CursorType > 0) Then
rsSearchSeries.MoveFirst
Else
rsSearchSeries.Requery
End If
%>