// JavaScript Document
	function getoCity(){
		$.ajax({
			type: "GET",
			url: "http://www.expresscarshipping.com/includes/autofill.asp",
			data:   "functype=getoCity" +
					"&zip=" + document.form.o_zip.value,
			success: function(html){
				$("#o_city").html(html);
			}
		});
	}
	
	function getdCity(){
		$.ajax({
			type: "GET",
			url: "http://www.expresscarshipping.com/includes/autofill.asp",
			data:   "functype=getdCity" +
					"&zip=" + document.form.d_zip.value,
			success: function(html){
				$("#d_city").html(html);
			}
		});
	}
	
	function getoState(){
		$.ajax({
			type: "GET",
			url: "http://www.expresscarshipping.com/includes/autofill.asp",
			data:   "functype=getoState" +
					"&zip=" + document.form.o_zip.value,
			success: function(html){
				$("#o_state").html(html);
			}
		});
	}
	
	function getdState(){
		$.ajax({
			type: "GET",
			url: "http://www.expresscarshipping.com/includes/autofill.asp",
			data:   "functype=getdState" +
					"&zip=" + document.form.d_zip.value,
			success: function(html){
				$("#d_state").html(html);
			}
		});
	}
	
	function getoZip(){
		$.ajax({
			type: "GET",
			url: "http://www.expresscarshipping.com/includes/autofill.asp",
			data:   "functype=getoZip" +
					"&city=" + document.form.o_city.value +
					"&st=" + document.form.o_state.value,
			success: function(html){
				$("#o_zip").html(html);
			}
		});
	}

	function getdZip(){
		$.ajax({
			type: "GET",
			url: "http://www.expresscarshipping.com/includes/autofill.asp",
			data:   "functype=getdZip" +
					"&city=" + document.form.d_city.value +
					"&st=" + document.form.d_state.value,
			success: function(html){
				$("#d_zip").html(html);
			}
		});
	}