This doesn't work Cheech
code looks like this now:
<%@LANGUAGE="VBSCRIPT"%>
<!--#include file="Connections/localBookingDatabase.asp" -->
<%
Dim rstest__MMColParam
rstest__MMColParam = "Room"
if (Request("MM_EmptyValue"

<> ""

then rstest__MMColParam = Request("MM_EmptyValue"

%>
<%
set rstest = Server.CreateObject("ADODB.Recordset"

rstest.ActiveConnection = MM_localBookingDatabase_STRING
rstest.Source = "SELECT * FROM Resource WHERE Description = '" + Replace(rstest__MMColParam, "'", "''"

+ "'"
rstest.CursorType = 0
rstest.CursorLocation = 2
rstest.LockType = 3
rstest.Open()
rstest_numRows = 0
%>
<%
Dim rsdisplay__display
rsdisplay__display = "4"
if (Request.Form("select"

<> ""

then rsdisplay__display = Request.Form("select"
%>
<%
set rsdisplay = Server.CreateObject("ADODB.Recordset"

rsdisplay.ActiveConnection = MM_localBookingDatabase_STRING
rsdisplay.Source = "SELECT ResourceID, Description, IdentifyingInformation, CostPerHalfDay FROM Resource WHERE ResourceID = " + Replace(rsdisplay__display, "'", "''"

+ ""
rsdisplay.CursorType = 0
rsdisplay.CursorLocation = 2
rsdisplay.LockType = 3
rsdisplay.Open()
rsdisplay_numRows = 0
%>
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#FFFFFF" text="#000000">
<p> </p>
<form name="form3" method="post" action="tektips.asp">
<table width="75%" border="1">
<tr>
<td>
<select name="select">
<%
While (NOT rstest.EOF)
%>
<option value="<%=(rstest.Fields.Item("ResourceID"

.Value)%>" <%if (CStr(rstest.Fields.Item("ResourceID"

.Value) = CStr(rsdisplay.Fields.Item("IdentifyingInformation"

.Value)) then Response.Write("SELECTED"

: Response.Write(""

%>><%=(rstest.Fields.Item("IdentifyingInformation"

.Value)%></option>
<%
rstest.MoveNext()
Wend
If (rstest.CursorType > 0) Then
rstest.MoveFirst
Else
rstest.Requery
End If
%>
</select>
</td>
<td><%= FormatCurrency((rsdisplay.Fields.Item("CostPerHalfDay"

.Value), -1, -2, -2, -2) %></td>
</tr>
</table>
</form>
<p> </p>
<form name="form1" method="post" action="">
</form>
<p> </p>
<p> </p>
</body>
</html>
<%
rstest.Close()
%>
<%
rsdisplay.Close()
%>
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#FFFFFF" text="#000000">
</body>
</html>