How to Refresh PHP Captcha Image on Form using jQuery

How to Refresh PHP Captcha Image on Form using jQuery

Hi, can you please let me know how I can refresh an image captcha generated by PHP?
what i have is an PHP file "captcha.php" which crerats the image on the form and I
I also have following form
  1. <html>
  2. <head>
  3. <title>Test Form</title>
  4. </head>
  5. <body>
  6. <form action="validate.php" method="post">
  7. Enter Image Text
  8. <input name="captcha" type="text">
  9. <img src="captcha.php" /><br>
  10. <button type="button" id="refresher">Refresh Captcha!</button>
  11. <input name="submit" type="submit" value="Submit">
  12. </form>
  13. </body>
  14. </html>
Thanks for your time and comments