// JavaScript Document
function getLanguages(form){
	var tour = form[1].options[form[1].selectedIndex].value;
	var fecha = form[2].value;
	ajax_do("ajax/ajaxComboIdiomas.php?fecha="+fecha+"&tour="+tour);
}

function getHoteles(form){
	var tour = form[1].options[form[1].selectedIndex].value;
	ajax_do("ajax/ajaxHoteles.php?tour="+tour);
}

function getInfoTour(form){
	var tour = form[1].options[form[1].selectedIndex].value;
	ajax_do("ajax/ajaxInfoTour.php?tour="+tour);
}

function getInfoTourByTourId(tour_id){
	ajax_do("ajax/ajaxInfoTour.php?tour="+tour_id);
}

function getWeekDay(){
	var fecha = document.getElementById('fecha').value;
	var tourId = document.getElementById('tour').options[document.getElementById('tour').selectedIndex].value;

	ajax_do("ajax/ajaxWeekDay.php?fecha="+fecha+'&tour='+tourId);
}


function assingPickup(){

	var hotelField = document.getElementById('hotel');
	var hotel = hotelField.options[hotelField.selectedIndex].value;
	
	var tourField = document.getElementById('tour');
	var tour = tourField.options[tourField.selectedIndex].value;

	ajax_do("ajax/ajaxPickUp.php?hotel="+hotel+"&tour="+tour);
}



