I have a dropdown list like
<h1>IMy Search Engine</h1>
<form id="formid">
<select name="days" id="selectid" onchange="check()">
<option value="">choose</option>
<option value="thirty.php">Last 30 days</option>
<option value="sixty.php">Last 60 days</option>
<option value="ninety.php">Last 90 days</option>
<option value="calender.php">custom</option>
</select>
</form>
With each option display another web page in next window. I want to show another web page in the same window using show() hide() jqueries. Anybody help?