How do i so when you pick a option in a select, then it should go to ?sort=Women ?
You'll need Javascript for that (most probably an onchange event listener).
onchange
onchange="window.location='?sort='+this.value"
or this
<select name="asd" onchange="window.location='?sort='+this.options[this.selectedIndex].value">