$(document).ready(function () {
    $('.home-locations select').change(function () {
        if ($(this).val() == '')
        {
            return;
        }
        $(this).closest('form').submit();
    });
});
