function checkPollForm(){
	it = new Array;
	$('#pollForm').find('input').each(function(i){
		if(this.checked==true){
			it[it.length] = $(this).attr('rel');
		};
	});

	if(it.length > 0){
		$('#pollButton').val('Подождите').attr('disabled',true);
		$.post(
			'/ajax/poll',
			{
				answer: it, 
				other: $('#a_other').val()
			},
			function(data){
				$('#pollForm').html(data);
			}
		);
	}
	
	return false;
}

