$(document).ready(function(){
		$("select").focus(function(){
			$("#reset").trigger('click');
		});		
		
		$(".resetform").focus(function(){
			$("#reset").trigger('click');
		});				
			
		$("#job_skills_drop").focus(function(){
			$("#job_skills").attr("checked","checked");
		});
		
		$("#personality_drop").focus(function(){
			$("#personality").attr("checked","checked");
		});		
		
		$("#job_areas_drop").focus(function(){
			$("#job_areas").attr("checked","checked");
		});

		$("#industries_drop").focus(function(){
			$("#industries").attr("checked","checked");
		});
		
		$("#title_drop").focus(function(){
			$("#title").attr("checked","checked");
		});	

		$("#search_box").focus(function(){
			$("#search").attr("checked","checked");
		});			
		
	});