arrRegions = [{"intRegionId":"86","strRegionName":"Staffordshire","arrLocations":[{"intLocationId":"1646","strLocationName":"Bewdley","strLocationNameWithPrefix":"Bewdley","strRegionName":"Staffordshire"},{"intLocationId":"1009","strLocationName":"Bilston","strLocationNameWithPrefix":"Bilston","strRegionName":"Staffordshire"},{"intLocationId":"99","strLocationName":"Bromsgrove","strLocationNameWithPrefix":"Bromsgrove","strRegionName":"Staffordshire"},{"intLocationId":"1053","strLocationName":"Burntwood","strLocationNameWithPrefix":"Burntwood","strRegionName":"Staffordshire"},{"intLocationId":"23","strLocationName":"Burton-On-Trent","strLocationNameWithPrefix":"Burton-On-Trent","strRegionName":"Staffordshire"},{"intLocationId":"101","strLocationName":"Cannock","strLocationNameWithPrefix":"Cannock","strRegionName":"Staffordshire"},{"intLocationId":"1098","strLocationName":"Cradley Heath","strLocationNameWithPrefix":"Cradley Heath","strRegionName":"Staffordshire"},{"intLocationId":"1279","strLocationName":"Kingswinford","strLocationNameWithPrefix":"Kingswinford","strRegionName":"Staffordshire"},{"intLocationId":"1300","strLocationName":"Leek","strLocationNameWithPrefix":"Leek","strRegionName":"Staffordshire"},{"intLocationId":"109","strLocationName":"Lichfield","strLocationNameWithPrefix":"Lichfield","strRegionName":"Staffordshire"},{"intLocationId":"1743","strLocationName":"Market Drayton","strLocationNameWithPrefix":"Market Drayton","strRegionName":"Staffordshire"},{"intLocationId":"1804","strLocationName":"Newcastle","strLocationNameWithPrefix":"Newcastle","strRegionName":"Staffordshire"},{"intLocationId":"1622","strLocationName":"Newport","strLocationNameWithPrefix":"Newport","strRegionName":"Staffordshire"},{"intLocationId":"1755","strLocationName":"Oldbury","strLocationNameWithPrefix":"Oldbury","strRegionName":"Staffordshire"},{"intLocationId":"1474","strLocationName":"Rowley Regis","strLocationNameWithPrefix":"Rowley Regis","strRegionName":"Staffordshire"},{"intLocationId":"1476","strLocationName":"Rugeley","strLocationNameWithPrefix":"Rugeley","strRegionName":"Staffordshire"},{"intLocationId":"1771","strLocationName":"Shifnal","strLocationNameWithPrefix":"Shifnal","strRegionName":"Staffordshire"},{"intLocationId":"1775","strLocationName":"Smethwick","strLocationNameWithPrefix":"Smethwick","strRegionName":"Staffordshire"},{"intLocationId":"534","strLocationName":"Stafford","strLocationNameWithPrefix":"Stafford","strRegionName":"Staffordshire"},{"intLocationId":"535","strLocationName":"Stoke-on-Trent","strLocationNameWithPrefix":"Stoke-on-Trent","strRegionName":"Staffordshire"},{"intLocationId":"1524","strLocationName":"Stone","strLocationNameWithPrefix":"Stone","strRegionName":"Staffordshire"},{"intLocationId":"116","strLocationName":"Tamworth","strLocationNameWithPrefix":"Tamworth","strRegionName":"Staffordshire"},{"intLocationId":"1561","strLocationName":"Tipton","strLocationNameWithPrefix":"Tipton","strRegionName":"Staffordshire"},{"intLocationId":"1792","strLocationName":"Uttoxeter","strLocationNameWithPrefix":"Uttoxeter","strRegionName":"Staffordshire"},{"intLocationId":"117","strLocationName":"Walsall","strLocationNameWithPrefix":"Walsall","strRegionName":"Staffordshire"},{"intLocationId":"1591","strLocationName":"Wednesbury","strLocationNameWithPrefix":"Wednesbury","strRegionName":"Staffordshire"},{"intLocationId":"119","strLocationName":"West Bromwich","strLocationNameWithPrefix":"West Bromwich","strRegionName":"Staffordshire"},{"intLocationId":"537","strLocationName":"Willenhall","strLocationNameWithPrefix":"Willenhall","strRegionName":"Staffordshire"}]}]

AddPageLoadFunction(
	function(){
		var objVarElement = document.getElementById("QuickSearchRegion");
		
		if(objVarElement != null && objVarElement.options){			
			var objOption, objTextNode;

			var intCurrentRegionId = objVarElement.options[objVarElement.selectedIndex].value;		
			objVarElement.innerHTML="";
			
			var intNumRegions = arrRegions.length;
			var bolRegionFound = false;
			
			for(var i=0; i<intNumRegions;i++){
				objOption = document.createElement("option");
				objOption.value = arrRegions[i]["intRegionId"];
				if(intCurrentRegionId == arrRegions[i]["intRegionId"]){
					objOption.selected = "selected";
					bolRegionFound = true;
				}
				objTextNode = document.createTextNode(arrRegions[i]["strRegionName"]);
				objOption.appendChild(objTextNode);
				objVarElement.appendChild(objOption);
			}
			
			if(!bolRegionFound){
				intCurrentRegionId = objVarElement.options[objVarElement.selectedIndex].value;				
				QuickChangeRegionById(intCurrentRegionId);
			}					
			
			var objMyRules = { 
				"#QuickSearchRegion" : function(objElement){
					addEvent(objElement,"change",QuickChangeRegion);
				}
			};
			Behaviour.register(objMyRules);
			Behaviour.apply(objMyRules);
		}
	}
)

function QuickChangeRegion(objEvent){
	objEvent = PrepareEvent(objEvent);
	var intCurrentRegionId = objEvent.objTarget.options[objEvent.objTarget.selectedIndex].value;
	QuickChangeRegionById(intCurrentRegionId);
}

function QuickChangeRegionById(intRegionId){
	var objOption, objTextNode;
	
	var objVarElement = document.getElementById("QuickSearchLocation");
	objVarElement.innerHTML="";

	objOption = document.createElement("option");
	objOption.value = 0;
	objTextNode = document.createTextNode("All Locations");
	objOption.appendChild(objTextNode);
	objVarElement.appendChild(objOption);

	var intNumRegions = arrRegions.length;
	for(var i=0; i<intNumRegions;i++){
		if(intRegionId == arrRegions[i]["intRegionId"]){
			intCurrentRegion = i;
		}
	}
	
	var intNumLocations = arrRegions[intCurrentRegion]["arrLocations"].length;

	for(var i=0; i<intNumLocations;i++){
		objOption = document.createElement("option");
		objOption.value = arrRegions[intCurrentRegion]["arrLocations"][i]["intLocationId"];		
		objTextNode = document.createTextNode(arrRegions[intCurrentRegion]["arrLocations"][i]["strLocationName"]);
		objOption.appendChild(objTextNode);
		objVarElement.appendChild(objOption);
	}
}
