$(document).ready(function(){
	$("#country").change(function(){
		initStates($(this).val());
		$('select[name=city]').html('');
	});
	$("#state").change(function(){
		initCities($(this).val());
	});
    
    initStates($("#country").val());

});

function initCountries() {
	paramerters = {type:1};
	$.post("modules/view_chamber_alerts_ajax.php", paramerters, function(data) {
		$('select[name=country]').html(data);
	});
}


function initStates(countryId) {
	paramerters = {type:2,
		countryId:countryId};
	$.post("modules/view_chamber_alerts_ajax.php", paramerters, function(data) {
		$('select[name=state]').html(data);
        initCities($('#state').val());
	});
}


function initCities(stateId) {
   paramerters = {type:3,
	   stateId:stateId};
   $.post("modules/view_chamber_alerts_ajax.php", paramerters, function(data) {
	 $('select[name=city]').html(data);
  });
}

