$(document).ready(function(){
    // Change URL upon selecting an option in client drop-down
    $('select').change(function(){
        window.location.href = window.location.href.replace(/(work\/(tv|radio|print|online|other)\/).*/, '$1' + $(this).val());
    });    
});