function __doSubmitOnCondition(combo)
{
    var button = document.getElementById('thirdAndWallForm:searchBtn');
    if (button)
    {
        button.disabled = true;
    }
    var selOption = combo.options[combo.selectedIndex];
    if (selOption.value != 'delimiter')
    {
        document.forms[0].submit();
    }
}