Instructions/Rules Inside Text Area

Add some custom javascript to the admin area, using wp_enqueue_script().

$(document).ready(function() {
    $('#input-id').attr('placeholder', 'Did you try Google first?');
});

The placeholder attribute does not work in Internet Explorer yet. You could fall back on a jQuery placeholder plugin if needed.