<html>
<head>
</head>
<select>
<option>1</option>
<option>2</option>
<option>3</option>
</select>
<button>
push
</button>
<body>
<script>
document.querySelector("button").onclick=function(){
alert(document.querySelector("select").value)
}
</script>
</body>
</html>