Ford,
так работает
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
</head>
<body>
<div class="group">
<label> центр</label>
<input type="text" name="brand" id="brand" title="Выберите">
</div>
<script>
$("#brand").on("keydown keyup ", function(){alert(1);});
</script>
</body>
</html>