

$(document).ready(function() {
    dietDropDown();
});

function dietDropDown(){
	disabled = ($("#diet").val() == "Other+-") ? false : true;
	$("#dietother").attr("disabled", disabled);
	
}

