function validate(form) {
	if(!loginChecked) {
		alert("You should enter write login");
		return false;
	}
	if(!(document.getElementById('licence_yes').checked)) {
		alert("You should read licence agreement and agree with it");
		return false;
	}
	return true;
}
