function jumpPath(formId) { 
	var form = document.getElementById(formId);
	var newIndex = form.language.selectedIndex; 
	cururl = form.language.options[newIndex].value; 
	window.location.assign(cururl); 
}

