$(window).bind("load",function(){
	$.datepicker.setDefaults($.datepicker.regional['']);
	$('#pickup_date').datepicker({dateFormat: 'dd/mm/yy'});
	$('#dropoff_date').datepicker({dateFormat: 'dd/mm/yy'});
});

function copyDate() {
	document.quote_form.dropoff_date.value = document.quote_form.pickup_date.value;
}

function changeDropOff() {
	var locationID = document.quote_form.pickup_location.selectedIndex;
	document.quote_form.dropoff_location.options[locationID].selected = true;
}