function goToSelectUrl(documentId){
	selObj = document.getElementById(documentId);
	document.location = selObj.options[selObj.selectedIndex].value;	
}

