3 {% trans "Please select a reason bellow or use the text box to input your own reason." %}
\r 
   4 <select class="prompt-examples">
\r 
   5     {% for type in types %}
\r 
   6         <option value="{{ type }}">{{ type }}</option>
\r 
   9 <textarea name="prompt">{{ types|first }}</textarea>
\r 
  11 $('.prompt-examples').change(function() {
\r 
  12     $('textarea[name=prompt]').val($(this).val())            
\r