unkind,
ввести две цифры и выделить текст
<html>
<head><meta charset="utf-8">
<script language="JavaScript">
function myFunction(s) {
var x = Number(s.x.value);
var y = Number(s.y.value);
var result=(Math.sqrt(Math.pow(x,2)+Math.pow(y,2)));
alert(result);
}
</script>
</head>
<body>
<form name="form1">
<p> Введите координаты точки по оси х: <input type="text" size="4" name="x"> </p>
<p> Введите координаты точки по оси y: <input type="text" size="4" name="y"> </p>
<input type="reset" class="reset1" value="Сбросить">
<br> <br> <br>
Расстояние <input type="text" width="50" name="res" value="выделите текст" onselect="myFunction(this.form)" >
</form>
</body>
</html>