View our upcoming and previous workshops, webinars and social networking events below. To pay by check for an event, please select "Invoice Me" during registration.
DISCLAIMER: Being a member of the NCCBT Network, on the NCCBT Google Group, or in the NCCBT Clinical Directory does not certify or verify expertise or training in cognitive behavioral therapy or other psychotherapy.
// Rename condition dropdown options
var searchForm = document.getElementById('searchContainer');
if (searchForm) {
var optionMap = {
'any of selected': 'Matches Any',
'all of selected': 'Matches All',
'none of selected': 'Excludes All',
'is': 'Is',
'is not': 'Is Not'
};
searchForm.querySelectorAll('select option').forEach(function(opt) {
var mapped = optionMap[opt.text.trim()];
if (mapped) opt.text = mapped;
});
}