function submitJump(formId,selectId){
	var num=document.getElementById(selectId).selectedIndex;
	if(document.getElementById(selectId).options[num].value!=''){
		document.getElementById(formId).submit();
	}
}