$(function() {
  $("select#cancel").bind("change keyup", function() {
    var show = $(this).val() == "anders" ? "show" : "hide";
    $(this).parents("fieldset:first").find("div.textarea")[show]();
  }).change();
});