I have the following HTML generated by form_tag and select_tag in Rails:
form_tag
select_tag
If you give an id to your tag you can use the id there.
id
Like:
RISK_ODS DETAIL_ADJUSTMENT ODS_STAGE FINANCE_DM1
and then:
$('#folder_name_foldernames').change(function(){ $('#this_form').submit(); });
Don't forget to wrap your selectors in quotes or you'll get a JavaScript error.