function cambio (seleccionado){
	if(seleccionado=='peso')
	{
		document.getElementById('i_tarifa').value=0;	
		document.getElementById('i_tarifa').readOnly = true;
		
	}
	else
	{
		document.getElementById('i_tarifa').readOnly = false;
	}	
	
}	
