| 
				Помощь не большая,но срочная!:(
			 Ребят над чтоб результат показывал в окошке на странице..спасибо!!вот код:
 
 <html>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 <title>Java</title>
 <style type="text/css">
 body {
 background-color: #FFF;
 }
 h1,h2 {
 font-family: Times New Roman, Times, serif;
 font-weight: bold;
 }
 h1 {
 font-size: 3cm;
 color: #000;
 }
 h2 {
 font-size: 2cm
 color: #CCC
 }
 </style>
 <h1>Java/Css</h1>
 </head>
 <form>
 <select id="mySelect">
 <option>1989</option>
 <option>1990</option>
 <option>1991</option>
 <option>1992</option>
 </select>
 <input type="button" onclick="var box = document.getElementById('mySelect'); var year = box.options[box.selectedIndex].value;alert(2010-year)" value="OK">
 </form>
 <body>
 </body>
 </html>
 |