correct, I can't think of the correct term off hand, ones server side, ones not, PHP won't do anything until you submit it.
Okay, I've pasted the code I have got below, it will need to be modified.
Currently its just one member in a list and when you click on their name it sends you to the URL specified by the value.
<head>
<title>Enter Title</title>
</head>
<SCRIPT LANGUAGE="JavaScript">
function formHandler1(){
var URL = document.form1.site.options
[document.form1.site.selectedIndex].value;
window.location.href = URL;
}
</SCRIPT>
<body>
<table bgcolor="342d7e" width ="600" height="50" align="center" cellspacing="1">
<tr>
<td align="center" width=200>
<font color="87f717">Select Member</font>
<FORM name = "form1">
<SELECT NAME="name" SIZE=1 onChange ="formHandler1()">
<OPTION VALUE="http://www.mysite.com/name.htm">Member 1</SELECT></FORM>
</td>
</tr>
</table>
</body>
Hope it helps!