JQuery multiple toggle values

After much pulling of hair here is the answer should anybody require it:

(function($){
    $(function() {
        $('#page_template').change(function() {
            $('#postdivrich').toggle($(this).val() == 'page-child.php' || $(this).val() == 'default') ;
        }).change() ;
    }) ;
})(jQuery) ;