// JavaScript Document
function processHowDoI(){
	var page = document.getElementById('how_to').value;
	if(page!=""){
		document.getElementById('how_to_form').action = "/tutorials/faq/"+ page +".html"; 
		document.getElementById('how_to_form').submit();
	}
}