R.S.Chourasia 0 Newbie Poster

Hi,
I am making a site in which I have to run an sql query on the oracle database. I have to take the condition for query from the selected entries in dropdown list i.e. the condition is based on the entris in the dropdown list entries.
I am using windows XP sp2,python 2.4, and mozilla firefox.
here is a sample code of my main code:-

<%

%>
<html>
<body>
<form id="myform">
<select id="myselect" name="myselect">
<option value="one" selected> ONE </option>
<option value="two"> TWO </option>
<option value="three"> THREE </option>
<option value="four"> FOUR </option>
<option value="five"> FIVE </option>
<option value="six"> SIX </option>
</select>
</form>
</body>
</html>
<%
import os
from mod_python import util
from mod_python import psp

_REQUEST = util.FieldStorage(req)
sql = _REQUEST
req.write("%s"%sql)
%>

Please help me and Thank you in advence