I would like to pass a value from a drop down list to a text box after a cmd button is pressed.
Here is what I have so far:
function Calculate()
{
if(document.orderform.Inspection_Type.selectedIndex == 3)
{
document.orderform.Approximate_Fee.value=="295";
}
thanks
Here is what I have so far:
function Calculate()
{
if(document.orderform.Inspection_Type.selectedIndex == 3)
{
document.orderform.Approximate_Fee.value=="295";
}
thanks