// Get value from form
function get() {
  	
	var getstr = "&";

  	var myKeyword=document.getElementById("keywordSeeks").value;
	var myLocation=document.getElementById("catlocation").options[document.getElementById("catlocation").selectedIndex].value;
	var myArea=document.getElementById("catarea").options[document.getElementById("catarea").selectedIndex].value; 
	var myWorkType=document.getElementById("catWorkType").options[document.getElementById("catWorkType").selectedIndex].value; 
   	var myOccupation=document.getElementById("catoccupation").options[document.getElementById("catoccupation").selectedIndex].value;
	var mySpecialisation=document.getElementById("catspecialisation").options[document.getElementById("catspecialisation").selectedIndex].value;
	var myDateRange=document.getElementById("DateRange").options[document.getElementById("DateRange").selectedIndex].value;
   	
  	getstr+="keywords="+myKeyword+"&catLocation="+myLocation+"&catarea="+myArea+"&catWorkType="+myWorkType+"&catoccupation="+myOccupation+"&catspecialisation="+mySpecialisation+"&DateRange="+myDateRange;
  	
 	document.getElementById("searchDiv").style.display="inline";
    document.getElementById("seekJobSearch").style.display="none";
    document.getElementById("searchAvailableJobText").style.display="none";
    document.getElementById("botMessage").style.display="none";
 	document.getElementById("jobVacancyContext").style.display="none";
 	document.getElementById("searchFrame").src = "http://jobs.seek.com.au/jobsearch/index.ascx?AdvertiserID=21509051"+getstr;
	
 	
 	
}
  


  