Find next element and show

Find next element and show

Hello

I have this situation where I click the first reply and it shows first respond but problem is when I click second reply only first respond stays showed. How  do you show the next one to leavecomment?

Here code example:
  1. <a class="leavecomment">Reply</a>
  2. <div id="respond" style="display:none;">blah</div>     
  3. <a class="leavecomment">Reply</a>
  4. <div id="respond" style="display:none;">blah</div>
  5. <a class="leavecomment">Reply</a>
  6. <div id="respond" style="display:none;">blah</div>
  1.        jQuery('.leavecomment').click( function () {
                    jQuery(this).find("#respond").show();
                  }
                );