i have:
Code: Select all
function getChoice(val)
{
yesNo = new Array("Yes", "No");
var getsel = document.contactus.yesnolist.value;
var e = document.getElementById("yesnolist");
var strUser = e.options[e.selectedIndex].value;
if (strUser == "no")
{
//go the the faq page here??????
}
return strUser;
}