function ajaxCarListFunction(){

  var cid = document.getElementById('country_cars').value;
	var rid = document.getElementById('region_cars').value;
	var pickupdate = document.getElementById('pickupmonth').value + "/" + document.getElementById('pickupday').value + '/' + document.getElementById('pickupyear').value + " 08:00:00 AM";
  var dropoffdate = document.getElementById('dropoffmonth').value + "/" + document.getElementById('dropoffday').value + '/' + document.getElementById('dropoffyear').value + " 08:00:00 AM";
  var pday = document.getElementById('pickupday').value
  var pmonth = document.getElementById('pickupmonth').value
  var pyear = document.getElementById('pickupyear').value

  var dday = document.getElementById('dropoffday').value
  var dmonth = document.getElementById('dropoffmonth').value
  var dyear = document.getElementById('dropoffyear').value
  
	var queryString = "?country_cars=" + cid + "&region_cars=" + rid + "&pdate=" + pickupdate + "&ddate=" + dropoffdate + "&pday=" + pday + "&pmonth=" + pmonth + "&pyear=" + pyear + "&dday=" + dday + "&dmonth=" + dmonth + "&dyear=" + dyear + "&rannum=" + Math.random();
	
	location.href=("http://www.ucch.org/car-hire/index.php" + queryString);
	
}

function OrderTime(sip, aid, iata, quoteid, currency){

  var cid = document.getElementById('country_cars').value;
	var rid = document.getElementById('region_cars').value;
	
	var pickupdate = document.getElementById('pickupmonth').value + "/" + document.getElementById('pickupday').value + '/' + document.getElementById('pickupyear').value + " 08:00:00 AM";
  var dropoffdate = document.getElementById('dropoffmonth').value + "/" + document.getElementById('dropoffday').value + '/' + document.getElementById('dropoffyear').value + " 08:00:00 AM";

  var pday = document.getElementById('pickupday').value
  var pmonth = document.getElementById('pickupmonth').value
  var pyear = document.getElementById('pickupyear').value

  var dday = document.getElementById('dropoffday').value
  var dmonth = document.getElementById('dropoffmonth').value
  var dyear = document.getElementById('dropoffyear').value

	var queryString = "?sip=" + sip + "&agency=" + iata + "&qid=" + quoteid + "&crncy=" + currency + "&dropoffid=" + aid + "&pdate=" + pickupdate + "&ddate=" + dropoffdate + "&country_cars=" + cid + "&region_cars=" + rid + "&pday=" + pday + "&pmonth=" + pmonth + "&pyear=" + pyear + "&dday=" + dday + "&dmonth=" + dmonth + "&dyear=" + dyear + "&rannum=" + Math.random();

	location.href=("https://www.ucch.org/car-hire/order.php" + queryString);

}

