$(document).ready(function(){
$('#txtRyTypeRemark').hide()
$("input[name='txtRyType']").each(function () {
$(this).click(function () {
if (this.defaultValue == '驾驶员' || this.defaultValue == '志愿者' || this.defaultValue == '赞助商') {
$('#txtRyTypeRemark').hide()
$('#txtRyTypeRemark').val=''
} else {
$('#txtRyTypeRemark').show()
$('#txtRyTypeRemark').val = ''
}
})
})
})