Can get this to work:
$(document).ready(function(){
$('a#reason').click(function(){
$('div#reasonEntry').toggle();
setTimeout($('#reasonForChange').focus(),10);
return false;
})
});
But can't get it to work when using show('slow');