function validate_option(f)
{
	var count = f.elements.answer.length;
	for(i=0;i<count;i++)
		{
			if(f.elements.answer[i].checked)
			return true;
		}
	alert("Please choose an option");
	return false;
}

