
function showQ(sel) {
	
	var opt = sel.options[sel.selectedIndex].value;
	if (opt == "Create your own question") {
			document.getElementById("id_your_question").style.display = "block";
			document.regist.Hint2.focus();		
	}	
	else {
			document.getElementById("id_your_question").style.display = "none";
	}
}


function setFocus() {
	document.regist.FirstName.focus();
} 


