RefreshCaptcha = function(spoofValue) {
	data = "option=com_here4life&controller=profile&task=AjaxGetNewCaptcha" +
	"&"+spoofValue+"=1";

	$.post("index.php",
		data,
	function( responseJSON ) {
		if(responseJSON != null) {
			if (responseJSON.success) {
				$("#signup_captcha_question_text").html(responseJSON.text);
			} else {
				
			}
		}
	}, 
	"json"
);
}