Hi,
Depending on whether you want the page to open in a new tab or the same tab one of the following should work.
For opening in same tab:
HTML Code:
<select onChange="location = this.options[this.selectedIndex].value;">
<option value="">Choose Your Provider</option>
<option value="http://localhost/pawnagecentral-servers/pcs.html">PawnageCentral Servers</option>
<option value="http://localhost/planetventrilo/pv.html">PlanetVentrilo</option>
<option value="http://localhost/power-gsp/pgsp.html">Power GSP</option>
<option value="http://localhost/psybergaming/pg.html">PsyberGaming</option>
<option value="http://localhost/redline-gameservers/rlgs.html">RedLine GameServers</option>
<option value="http://localhost/redphive/rpn.html">RedPhive Networks</option>
</select>
Or to open in a new tab:
HTML Code:
<select onChange="window.open(this.options[this.selectedIndex].value,'_blank');">
<option value="">Choose Your Provider</option>
<option value="http://localhost/pawnagecentral-servers/pcs.html">PawnageCentral Servers</option>
<option value="http://localhost/planetventrilo/pv.html">PlanetVentrilo</option>
<option value="http://localhost/power-gsp/pgsp.html">Power GSP</option>
<option value="http://localhost/psybergaming/pg.html">PsyberGaming</option>
<option value="http://localhost/redline-gameservers/rlgs.html">RedLine GameServers</option>
<option value="http://localhost/redphive/rpn.html">RedPhive Networks</option>
</select>