var t = null;
function abeStep1(){
	t = setTimeout('customselect()',100);
}
function customselect(){
	if($("select#abe_timePickup").val()!=null&&$("select#abe_timeDropoff").val()!=null){
		clearTimeout(t);
		$("select").selectBox();
		$("select#abe_residenceList").val("GB");
		$("input#abe_droplocation_cb").attr("checked", "checked");
		return;
	}
	t = setTimeout('customselect()',100);
}
