{
let text = ``;
if (selection == "Nothing")
text = `<hr><h3><i>The Window of Change</i></h3>
Text <i>before</i>.<hr>`;
else
text = `<hr><h3><i>The Window of Change</i></h3>
Text <i>after</i> selecting ${selection}.<hr>`;
textChangedBySelect.innerHTML = text;
}