Kolko,
а тебе именно по клику надо?
Вот пример по клику:
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<input type="text" id="my-id" onclick="calculat()">
</body>
<script>
function calculat() {
var name = 'значение';
var name1 = 'значение1';
document.querySelector('#my-id').value = name + ' ' + name1;
}
</script>
</html>