I have a html page with one drop down menu and one text entry box.

I would like both results entered in both of these fields to be checked
against my database.

I can do this for a single field (i.e. just type in and click 'search'), but
for two elements I cannot find any help. The books I have read only cover a
single field.

My html page is: [url]http://munzamedia.co.uk/trip/catalogue.htm[/url]
-you can see the two fields here

My asp search code is this (for one element only):

SQLQuery = "SELECT * FROM researchers WHERE keywords LIKE '"
SQLQuery = SQLQuery & Request.QueryString("keyword") & "%'"

How do I get the second field to work along with the first? I am not after a
direct answer, just some advice as to where I can go to find out this
information.

Thanks,
Mark