
function validatesubmit2()
{
	if(checkeligiblity2.country.selectedIndex==0)
	{
		alert("You forgot to select your birth country");
		return false;
	}
	if(checkeligiblity2.education.selectedIndex==0)
	{
		alert("You forgot to select your Education");
		return false;
	}
	if(checkeligiblity2.job.selectedIndex==0)
	{
		alert("You forgot to select your occupation (Work Experience)");
		return false;
	}

return true
}