function submitemploymentform()
					{
										
					var chkbox_choices=0;
					
					for (counter=0;counter<job_form.chkjob.length;counter++)
						{
							if (job_form.chkjob[counter].checked)
								{
									chkbox_choices = chkbox_choices + 1;
								}
								
						}
										 					
					 if(chkbox_choices==0)
					 	{
							alert("You didn't select any job listing to apply for. Please try again.")
							return(false);
						}
																	
					 if(chkbox_choices>3)
					 	{
							alert("You cannot apply for more than 3 jobs at one time. Please select up to three and try again.")
							return(false);
						}
					 
					 return(true);
					 				  
					}
