// JavaScript Document
function montos_t(valor)
{ 
  var nro_pasajeros=document.getElementById("nro").value;
  //recuperar el valor seleccionado
	 jQuery.get('ajax/costos.php',{id_item:valor,nro_pasajeros:nro_pasajeros},function(respuesta){jQuery('#montos').html(respuesta);})

}
