+ // Saco de FROM los que ya estan en TO
+ replaceChildNodes('form_docentes_from', list(ifilterfalse(
+ partial(esta_en_to, $('form_docentes_to').options),
+ $('form_docentes_from').options
+ )));
+ }
+ function esta_en_to (options, i) {
+ for (j=0; j < options.length; j++)
+ if (options[j].value == i.value)
+ return true;
+ return false;
+ }