﻿$(document).ready(function() {

    //if a job location field exists
if ($(".jobLocationRegion").length > 0) {
        //hide the salary band by default
        $('#FieldWrapper_SalaryBandIDs, #FieldWrapper_SalaryBandID').hide();

        //show the salary band if UK is selected in the region  
        $(".jobLocationRegion").bind("change.toggleSalaryBand", function() {
            var selectedRegion = $(".jobLocationRegion :selected").text();

            if (selectedRegion == "UK & Eire") {
                $('#FieldWrapper_SalaryBandIDs, #FieldWrapper_SalaryBandID').show();
            }
            else {
                $('#FieldWrapper_SalaryBandIDs, #FieldWrapper_SalaryBandID').hide();
            }
        });
    }

});
