﻿function AddChildren(dropdown, childControlsContainer) {
    if (dropdown.options[dropdown.selectedIndex].value == '0') {
        document.getElementById(childControlsContainer).style.display = 'none';
    }
    else {
        document.getElementById(childControlsContainer).style.display = '';
    }

}
