docReady(function(){
function countryChanged()
{
var CountryID = $("#edit-CountryID").val();
//alert(CountryID);
var CountryIDs = [];
if((CountryID != 203) && (CountryID != 1)&& (CountryID != 53)&& (CountryID != 73)&& (CountryID != 149)&& (CountryID != 190) )
{
$("#edit-CountyID").hide();
}
else
{
$("#edit-CountyID").show();
if($("#edit-displayOther").attr('checked'))
{
$("#edit-CountyID").attr("class","noshow"); $("#edit-otherCounty").attr("class","show");
}else
{
$.post("/php/countriesCounties.php","output=TRUE&type=counties&CountryID="+$("#edit-CountryID").val(),function(msg,textStatus)
{
if(msg)
{
blankOption = '';
msg = blankOption + msg;
$("#edit-CountyID").removeClass("noshow"); $("#edit-CountyID").addClass("show");
$("#edit-otherCounty").attr("class","noshow");
var countyID = $("#edit-CountyID > :selected").val();
$("#edit-CountyID").html(msg);
if(countyID)
{
$("#edit-CountyID > [value='" + countyID + "']").attr("selected", "selected");
}else $("#edit-CountyID").val($("#edit-CountyID > :first").val());
}else
{
$("#edit-CountyID").attr("class","noshow"); $("#edit-otherCounty").attr("class","show");
}
},"html");
}
}
}
countryChanged();
$("#edit-CountryID").change(countryChanged);
$("#edit-displayOther").change(countryChanged); $("#edit-displayOther").click(countryChanged);
});
/*if(indexInArray(arr, val)>-1){
alert('found element');
}
function indexInArray(arr,val){
for(var i=0;i