function onChange() {
    var comboBox = document.getElementById('centralPanel:selectQuestion');
    switchVisible(comboBox.selectedIndex == 0);
}

function switchVisible(b) {
    var textBox = document.getElementById('centralPanel:inputQuestion');
    if (b) textBox.style.visibility="visible";
    else textBox.style.visibility="hidden";
}
