pay atention that "getselectedtabindex" is a function, so you need "()" at the end, also indices are starting with 0 as Fazith has written, in "setEnabled" you missed a "d" at the end.
your code should be:
if (TABSTRIP_1.getSelectedTabIndex() == 1) {
DROPDOWN_2.setEnabled (false);
}
works now?