function scJumpTo(thisEl){
var optValue = thisEl.options[thisEl.options.selectedIndex].value;
	if(optValue != ''){
		document.location = optValue;
	}
}
