<script type="text/javascript">
$(document).ready(function(){
$("#Select").change(function(){
if ($(this).val() == "Other" ) {
$("#OtherField").show();
} else {
$("#OtherField").hide();
}
});
});
</script>
Comments
Post has no comments.