//Godfrey, these are the scripts that you've been looking for

function formHandler(){
var URL = document.form.choices.options[document.form.choices.selectedIndex].value;
top.location.href = URL;
}

function goToLink(form)
	{
top.location.href=form.options[form.selectedIndex].value;
	}
