Avatar

Level 10

The DDList has a selectedIndex property. This tells you which index was selected (not it is a 0 based index).

So you could write script on the exit event that would do something like this:

if (this.selectedIndex < 4){

     send email to userA

} else {

     send email to userB

}

paul