function selectCountry(){
    var country = $("#country").val();
    if(country.length<1 || country == 'United States'){
        $("#stateOther").hide();
        $("#stateUs").show();
    }
    else{
        $("#stateUs").hide();
        $("#stateOther").show();
    }
}
