<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<input class='mail' type="text">
<button onclick="inp();">go!</button>
<script>
function inp(){
var mail = document.querySelector('.mail').value;
if (~mail.lastIndexOf('.com')) {
alert( 'Вы из Англии' );
}
}
</script>
</body>
</html>