// JavaScript Document
function activate_action_signup_button()
{
	att = document.getElementById("agree_to_terms");
	if (att.checked == false)
		document.getElementById("action_signup").disabled = true;
	else
		document.getElementById("action_signup").disabled = false;
}

function verifyingForm(form)
{
   var div = document.getElementById("verif_country")
   if(form.city.selectedIndex == 0)
	{	   
		div.innerHTML = " Select country";
	}
	else
	{
		//div.innerHTML = "";
		//form.submit();
		alert("ura");
	}


}

function new_captcha()
{
    jQuery("#captcha").attr("src", "");
    jQuery("#captcha").attr("src", "CaptchaSecurityImages.php?width=100&height=40&character=5&rand="+Math.random());
}