<SCRIPT LANGUAGE="JavaScript">
function getURL(form) {
// get the value of the selected option
var url = form.selURL.options[form.selURL.selectedIndex].value;
// go there
location.href = url;
</SCRIPT>
