function addMenuJS (select, url, button) {

	// insert the onchange function to redirect
	document.getElementById(select).onchange = function() 
		{ 
		window.location= url + this.value.toLowerCase().replace(/ /, '-'); 
		}
	// remove unneeded button
	var button = document.getElementById(button);
	button.parentNode.removeChild(button);
}

// insert the onchange function to redirect
//document.getElementById("estimating-app-menu-select").onchange = function() 
//	{ 
//	window.location= '/estimating-guide/' + this.value.toLowerCase().replace(/ /, '-'); 
//	}
// remove unneeded button
//var button = document.getElementById("estimating-menu-submit");
//button.parentNode.removeChild(button);