Converting label to href

Converting label to href

I have some html that looks like this:

  1. <div class="generated">
  2. <p><label for="id_group">Group</label> <select name="group" id=" id_group" tabindex="1">
  3. <option value="" selected="selected"></option>
  4. <option value="1">12S</option>
  5. <option value="2">13S</option>
  6. <option value="3">22SOI</option>
  7. </select></p>
  8. </div>

I want to make the label 'Group' to be a href. How can I modify that with jQuery?