$('#affiliation').change(function(){
$('#container div').css('display','none');
id = $('#affiliation option:selected').val();
$('#'+id).show();
});
$(''#affiliation').on('change', function (e) {
const optionSelected = $("option:selected", this);
const id = this.value;
$('#'+id).show();
});
Тогда ваш код тоже рабочий. Проверил