function validate_vote()
{
	if (!$('voting_form').getElements('input.choice').some(function(input){return input.checked}))
	{
		alert('Пожалуйста, выберите вариант ответа.');
		return false;
	}
	
	return true;
}