<!DOCTYPE html>
<html>
<head>
<title></title>
<style type="text/css">
</style>
</head>
<body>
<script>
function openinframe(target) {
document.getElementById('window1').src = target;
}
</script>
<form>
<div>
<button type="button" onclick="document.getElementById('select0').selected=true;openinframe('')">Х</button>
<select>
<option id="select0" selected onclick="openinframe('')">Выберите ссылку</option>
<option onclick="openinframe('http://javascript.ru/forum/')"> сайт 1</option>
<option onclick="openinframe('http://habrahabr.ru/top/')"> сайт 2</option>
<option onclick="openinframe('https://www.google.ru/')"> сайт 3</option>
</select>
</div>
</form>
<div>
<iframe width="100%" height="300" scrolling="auto" frameborder="0" id="window1"></iframe>
</div>
</body>
</html>