var country = null;

function getStates(country_id){
	country = country_id;
	ajaxPerform(true, 'action=getStates&country_id='+country_id, 'ajax_responser.php', 'POST', loadCombobox);
}

function updateStateLabel(country_id){
	country = country_id;
	ajaxPerform(true, 'action=getStateType&country_id='+country_id, 'ajax_responser.php', 'POST', setDivValue);
}

