how to window.location.href parameter from the <select> field
I've got code, but it doesn't href's (redirects) user after changing the <select> value; what I need to fix?:
<script type="text/javascript">$(function(){$("select[name=\'goto\']").change(function(){$("#goto").window.location.href="'.URL.$uri.'/p".$("#goto").val();});});</script>
<select id='goto'>...
----