function voteSurvey() {
	var cnt = 0;
	
	for(var i = 0; i < document.survey.length ; i++)
		if(document.survey.chkBx[i].checked == true)
			cnt = cnt + 1;

	if(cnt > 0)
		document.survey.submit();
	else
		alert("Please select any option.");

}
