$(document).ready(function() {
	timer = setTimeout(function(){
	$.ajax({
	  url: "/captcha.php?id=3",
	  cache: false,
	  success: function(html){
		$("#submit_b").append(html);
	  }
	});
	clearTimeout(timer)}, 500);
});