function disabledSpecialIssue()
{
var collection = $("#id").val();
if (collection != "") {
$("#id").prop('disabled', 'disabled');
} else {
$("#id").removeAttr("disabled");
}
}
function disabledCollection()
{
var specialIssue = $("#id").val();
if (specialIssue != "") {
$("#id").prop('disabled', 'disabled');
} else {
$("#id").removeAttr("disabled");
}
}