There are two things you need to work out here.
First you need determine when the dropdown list has the Custom value selected/OR NOT.
Second you need to show/HIDE the textbox.
Code:
<script language="JavaScript">
function testCustom(selObj)
{
if(selObj.options[selObj.selectedIndex].value == 'Not in this List')
{
//Show the textbox
document.yourtextboxname.style.visibility = 'visible';
document.yourtextboxname.style.display = '';
}
else
{
//Hide the textbox
document.yourtextboxname.style.visibility = 'hidden';
document.yourtextboxname.style.display = 'none';
}
}
</script>
The select control needs to have a onchange event
Code:
onChange="javascript:testCustom(this);"
I have not tested the syntax which is important as javascript is case sensitive.
But this should get you started.
To find out more search for these issues seperately.
IE Show Hide textbox in javascript
AND Get Selected Value in Javascript
======================================
They say, best men are molded out of faults,
And, for the most, become much more the better
For being a little bad.
======================================