Hi
Thank you in advance for any help
Here's what I am trying to do...
I have two drop down lists location and custom form depending on location the custom form value changes.
function ChgCustForm()
{
if (window.document.main_form.location.value='X')
{
window.document.main_form.customform.value='CustformX';
}
}
no error but does slove the purpose either please help
Cant change the name since I have no access to the source code ..
location is what I have to use ...
Is there anything else u can think of ..
Thanks for all the replies.
Doesn't work either. can somebody please guide on this script please.
function ChgCustForm()
{
if (window.document.main_form.elements['location'].value=='X')
{
window.document.main_form.customform.value='CustformX';
}
}