function loadStates(country_dom_id, state_dom_id) {

	state_jquery = $("#" + state_dom_id);
	country_jquery = $("#" + country_dom_id);
	loading_jquery = $("#" + state_dom_id + "Loading");

	loading_jquery.show();
	state_jquery.removeOption(/./);

	$.getJSON("/states/getlist/" + parseInt(country_jquery.attr('value')), function(json) {
		state_jquery.addOption(json.options, false);
		
		/*
		if(state_jquery.get(0).options.length > 1)
			state_jquery.attr('disabled', false);
		else
			state_jquery.attr('disabled', true);
		*/

		loading_jquery.hide();
	});

	return false;
}
