Te podría quedar así..
Le agregas el evento onchange a tu dropdownlist desde tu page Load
Cita: Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
'Put user code to initialize the page here
If Not IsPostBack Then
ddl_Criterio.Attributes.Add("onchange", "ocultar(this);")
End If
End Sub
Y en tu HTML sería:
Cita: <script language=javascript>
function ocultar(obj)
{
var iIndex = obj.selectedIndex;
if (iIndex==2 || iIndex==3 || iIndex==4)
obj.style.visibility='hidden';
else
obj.style.visibility='visible';
}
</script>
Salu2