function openURL()
{ 
// grab index number of the selected option
selInd = document.theForm.pulllist.selectedIndex; 
// get value of the selected option
goURL = document.theForm.pulllist.options[selInd].value;
// redirect browser to the grabbed value
this.location.href=goURL; 
}
