Is 'na' a value you can already choose in your dropdown? If so, formname.selectname.value = 'na' will suffice. If not you'll have to add an option to your pulldown and set it as selected.
You could use InnerHTML. It works in IE, but not sure about Netscape.
Example:
function checkfollowup()
{
divNAME.innerHTML = '<input type="input" name="field1_in" size="12" value"na">');
}
Then call your function from your link, or use an onChange or onClick.
And have your div named to whatever "divNAME" is above.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.