$(window).load(function() {
	//Add onClick event that will gather user input from the dropdown box and the text box and pass that into a search query
	$('#form-search').submit(function(){
		var baseURL = '/search?q=';
		var jobSegment = $('#home-keywordsearch-q').val();
		var locationSegment = '&location='+$('#home-locationsearch-q').val();
		
		var searchBox = $('#home-keywordsearch-q');
		var locationBox = $('#home-locationsearch-q');
		
		if(searchBox.val()=='') {
			alert('Please enter a keyword to search by.');
		}else{
			//Set the document's location to our new URL, including the keyword
			document.location.href=baseURL+jobSegment+locationSegment;
		}
		
		//Do not return to the form's default action
		return false;
		
	});
});
