function toggleBillingForm(val) {
	if(val == "1") {
		document.getElementById("billing_section").style.display = "none";
	} else {
		document.getElementById("billing_section").style.display = "block";
	}
}

function populateCounty(state) {
	
	$.getJSON(
		  'counties.php'
		, { state : state }
		, function(data) {
			$.each(data, function(val, text) {
				$('#countylist select').append( $('<option/>').val(val).text(text) );
			})
			$('#countylist').show();
		}
	);
	
	
}