Better way of writing this block of jquery code

Better way of writing this block of jquery code

I've the following code block that works just as expected, but I'm sure there's a better and cleaner way to write it. Would appreciate if you could show me how -

  1. $(function () {
  2.        $("#show_only_to").bind('change', function () {
  3.           if( $("#show_only_to").val() == 'loggedin')  {
  4.               $("#access_redirect").hide();
  5.               $("#access_member_roles").show();
  6.           } else if ( $("#show_only_to").val() == 'loggedout' ) {
  7.               $("#access_member_roles").hide();
  8.               $("#access_redirect").show();
  9.           } else if ( $("#show_only_to").val() == 'everyone' ) {
  10.               $("#access_member_roles").hide();
  11.               $("#access_redirect").hide();
  12.           }
  13.        });
  14.     });