As far as I can see your question has already been answered:
Code:
<select name="name" onchange="this.form.submit()">
When somebody chooses an option from the select list, this will immediately submit the form (that the select is contained within).
This, of course, is assuming that the select is contained within a form, which has a
method and an
action, and that you have a page that processes the submitted data.