$(document).ready(function(){ function countryChanged() { var CountryID = $("#edit-CountryID").val(); var CountryIDs = [203]; 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) { $("#edit-CountyID").removeClass("noshow"); $("#edit-CountyID").addClass("show"); $("#edit-otherCounty").attr("class","noshow"); var countyID = $("#edit-CountyID > :selected").val(); $("#edit-CountyID").html(msg); // if county selected, make sure it's selected if($("#edit-CountyID > [@value='"+countyID+"']").val() == countyID) { $("#edit-CountyID").val(countyID); }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); });