$(document).ready(function() {
    if($("body.locations")) {
        $("#country_select").change(function(){
            var country_code = $(this).val();
            window.location.replace('/locations/' + country_code.toLowerCase());
            
            if($(this).val() == 'US') {
                $("#state_select").show();
            } else {
                $("#state_select").hide();
            }
            
        });
        
        $("#state_select").change(function(){
            var state_code = $(this).val();
            window.location.replace('/locations/us/' + state_code.toLowerCase());
        });
    }
});

