addevent(window,'load',function(){
	var oobj = getobj('countryid');
	if (oobj) {
		oobj.onchange = function() {
			changeCountry(this.value,false,true);
			var sobj = getobj('countrypart');
			if (sobj) {
				sobj.value = this.value;
			}	
		}
	}
});
function changeFilterCountry(sobj) {
	var other = getobj('countryid');
	if (!other) {
		return;
	}
	other.value = sobj.value;
	changeCountry(sobj.value,0);
}

