Attempting to "clear" or "reset" drop-down selectors

Attempting to "clear" or "reset" drop-down selectors

Hello all,

I'm trying to set up a function on button click that will reset currently selectors with selected values back to the default or first selection of "(All)".

Here is the code I'm trying that doesn't seem to work:

       $('div[k="W10573"]').click(function(){
                $('div[k="W6038"]').val($('div[k="W6038"]')[0].defaultValue);
                });

with W10573 being the button and W6038 being the selector.  I know the button is working as I tested it with an alert("TEST"); which worked fine.  I know there are several other ways to do this, but none of the ones I've tried so far seem to work either so I'm not sure if it's a syntax thing or if I'm taking the wrong approach altogether.