jquery validation plugin - errorplacement

jquery validation plugin - errorplacement

As a default, instead of inserting the error label directly after the input, I'd like the error label to be inserted as the last element of the parent div.  For example:

  1. <div class='data'>
  2. <input type="text" class="required" /> <span>Some instructional text</span>
  3. (how do I get the error message to always display here?)
  4. </div>
Update - I've gotten the message to appear here but where should I put the errorplacement setting so that it does this for all the forms on the site?