﻿function toggleOther(ddl,tb){
    var dropDown = document.getElementById(ddl);
    var textBox = document.getElementById(tb);
    if (dropDown.value == "Other"){
        textBox.disabled = false;
        textBox.focus();
    }else{
        textBox.value = '';
        textBox.disabled = true;	        
    }
}

