//Training Location Redirecting Functions Below
$(document).ready(
    function intializeTrainingLocationRedirect() {
        $(".jsOnly").show();                        //MAKE THE SELECT BOX VISIBLE
        $("#trainingLocations").change(             //INTIIALIZE THE ON CHANGE EVENT FOR THE TRAINING LOCATIONS SELECTOR
            function(){
                var desiredAnchor = $("#trainingLocations option:selected").val();   //GET THE DESIRED ANCHOR
                if (desiredAnchor != "")
                {
                   window.location = "location_contacts_travel_lodging.asp" + desiredAnchor; 
                }
                else
                {
                    //DO NOTHING THEY DID NOT CHOOSE A LOCATION TO JUMP TO
                }
            }
        ); 
    }
);