function getRegions(cId, langId, langCode){
	if(cId){
		var response = jQuery.ajax({
			method: "GET",
			url: "/includes/ajax.php",
			data: "func=load_selected_country_region&lang_id="+langId+"&lang_code="+langCode+"&country_id="+cId,
			success: function(response){
				if(document.getElementById("region-combo")){
					document.getElementById("region-combo").innerHTML = response;
				}
			}
		});
	}
}

function loadRegsPage(langCode, siteurl, country, url_string, regId, region){
	var URL = url_string.split('**');
	//var region = document.getElementById(divId).value;
	if(region == 'all'){
		if(URL[3] && (URL[3] == 'category')){
			location.href = siteurl+"/"+langCode+"/list/search/category/"+URL[4]+"/"+country;
		} else {
			location.href = siteurl+"/"+langCode+"/list/search/country/"+country;
		}
	} else {
		if(URL[3] && (URL[3] == 'category')){
			location.href = siteurl+"/"+langCode+"/list/search/category/"+URL[4]+"/"+country+"/"+region;
		} else {
			location.href = siteurl+"/"+langCode+"/list/search/region/"+region;
		}
	}
}
