use javascript in the dropdownlist add something like onchange="showHide()" then with javascript - function showHide() { if(document.getElementById("txtboxID").style.display == "none") document.getElementById("txtboxID").style.display = "block"; else document.getElementById("txtboxID").style.display = "none"; }