$(document).ready(function(){ function countryChanged() { var CountryID = $("#edit-CountryID").val(); var CountryIDs = [1]; if($("#edit-displayOther").attr('checked')) { $("#edit-CountyID").attr("class","noshow"); $("#edit-otherCounty").attr("class","show"); }else { $.ajax({ type: "POST", url: "/php/countriesCounties.php", data: "output=TRUE&type=counties&CountryID="+CountryID, dataType: "html", success: function(msg) { 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(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"); } } }); } } countryChanged(); $("#edit-CountryID").change(countryChanged); $("#edit-displayOther").change(countryChanged); $("#edit-displayOther").click(countryChanged); });