how can i achieve this please?
i have:
<script type="text/JavaScript">
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;
}
thank you