The redirection is working fine with the html code below however I just want it to redirect the last option value "Facebook" and just do nothing when the other options are selected.
<select onchange="location = this.options[this.selectedIndex].value;">
<option>Please select</option>
<option value="Apple">Apple</option>
<option value="BBC">BBC</option>
<option value="http://www.facebook.com">Facebook</option>
</select>
Thank you,