function jumpMenu(el) { 

	var el = document.getElementById(el);
	var si = el.options[el.selectedIndex].value;

	if ( si ) { 
		
		window.location = si; 

	} 

}