Clear multiple relate fields

Hi to all,
i’m doing a customization in LEADS module including some relate fields for my custom modules.

I need to clear content of some of them based on a dropdown selection with javascript.

I’ve also found this function:

SUGAR.clearRelateField(this.form, ‘dbg_acarrier_c’, ‘dbgit_airports_id_c’); that works with a single relate filed but if i try to replicate it for multiple fileds it doesn’t wotk.

Example:
on change dropdown event will do:
// Clear input field and resets its value -> for different fileds
SUGAR.clearRelateField(this.form, ‘dbg_aol_c’, ‘dbgit_airports_id_c’);
SUGAR.clearRelateField(this.form, ‘dbg_aod_c’, ‘dbgit_airports_id_c’);
SUGAR.clearRelateField(this.form, ‘dbg_acarrier_c’, ‘dbgit_airports_id_c’);

All fileds will be cleared but in the last two this error will comes:
No match for field: Field Name

Can anyone help me…thank you

Solved…just put wrong id on code…

Sorry