function goToPage(dd) { 
	var ind = dd.selectedIndex; 
	if (ind == 0) { return; } 
	var url = dd.options[ind].value 
	document.location=url; 
} 

function clearText(thefield){
	if (thefield.defaultValue==thefield.value)
	thefield.value = ""
}
