function GrabSearchOptions(cat_id) {
	
		var ajaxRequest;  // The variable that makes Ajax possible!
		
		try{
			// Opera 8.0+, Firefox, Safari
			ajaxRequest = new XMLHttpRequest();
		} catch (e){
			// Internet Explorer Browsers
			try{
				ajaxRequest = new ActiveXObject("Msxml2.XMLHTTP");
			} catch (e) {
				try{
					ajaxRequest = new ActiveXObject("Microsoft.XMLHTTP");
				} catch (e){
					// Something went wrong
					alert("Your browser broke!");
					return false;
				}
			}
		}
		// Create a function that will receive data sent from the server
		ajaxRequest.onreadystatechange = function(){
			if(ajaxRequest.readyState == 4){
				var ajaxDisplay = document.getElementById('search_option_frame');
				ajaxDisplay.innerHTML = ajaxRequest.responseText;
			}
		}
		
		var queryString = "?cat_id="+cat_id;
		ajaxRequest.open("GET", "search_options.php" + queryString, true);
		ajaxRequest.send(null);
		
	
}


function SearchCheck() {
	var cat_id = "";
	var tire_size = "";
	cat_id = document.getElementById("category_id").value;
	tire_size = document.getElementById("search_options").value;
	
	
}