// JavaScript Document

function captcharefresh(){
  $.ajax({
    type: 'POST',
    url: 'ajax/captcha-refresh.php',
    data: 'refresh=refresh',
    success: function(html){
      $('#captcha_code').html(html);
    }
  });
}