// JavaScript Document

function updateGeneralSearchForm(){
	if(document.getElementById('search_type').value == "recipes"){
		document.getElementById('search_form').action = "search.php";
	}else if(document.getElementById('search_type').value == "blog"){
		document.getElementById('search_form').action = "http://blog.chefmd.com";
	}else if(document.getElementById('search_type').value == "famnews"){
		document.getElementById('search_form').action = "news.php";
	}
}
