$(document).ready(function(){


	function updateRegion(country_id, zone_id) {
		
		$('html:not(.ie7) #zone_id').remove();
		$('html:not(.ie7) #faux_zone_id').replaceWith('<select id="zone_id" name="zone_id"></select>');
		$('html:not(.ie7) #zone_id').load(base + 'index.php?route=account/create/zone&country_id=' + country_id + '&zone_id=' + zone_id, function() {
			$(this).makeNiceSelects(); // back and forth, back and forth, so goes the beat of my heart
		});
		
		$('html.ie7 #zone_id').load(base + 'index.php?route=account/create/zone&country_id=' + country_id + '&zone_id=' + zone_id);
		
		$('html:not(.ie7,.ie8) #postcode').load(base + 'index.php?route=account/create/postcode&country_id=' + country_id);

	}

	$('html:not(.ie7) #faux_country_id .select-options span').click(function() {
		country_id = $('#country_id').val();
		updateRegion(country_id, zone_id);
	});

	updateRegion(country_id, zone_id);

});
