<html>
<head>
<title>Добавление расширения файла к запросу</title>
<script>
window.onload = function() {
var elemInput1 = document.getElementById("fn");
var ext = ".jpg";
elemInput1.onchange = function() {
if(elemInput1.value != "") {
elemInput1.value += ext;
} }; };
</script>
<style>
h1 { text-align: center; }
div { top: 50px; left: 10px; position: relative; }
</style>
</head>
<body>
<div>
<h1>Пример</h1>
<form id="frm1">
<p><label for="fn">Введите имя файла и кликните в любой области страницы: </label><input type="text" id="fn" value=""></p>
</form>
</div>
</body>
</html>