
	function cambiaprecio()
	{
		if ((document.frmPartidas.Precio_i.selectedIndex==0) || (document.frmPartidas.Precio_i.selectedIndex==37)){
			document.frmPartidas.Precio_f.selectedIndex=0
		}
		else{		
			document.frmPartidas.Precio_f.selectedIndex=document.frmPartidas.Precio_i.selectedIndex+1
		}
	}				

	
	