$(document).ready(function() {
$('#numberCheck').click(function() {
if($('#numberInput').val().charAt(0) == '0')
alert("Неправильно набран номер");
});
});
<form action="handler.php" method="post">
<input type="input" name="name" value="Вася">
<input type="input" name="password" value="Пупкин">
<input type="hidden" name="id" value="999"> <!-- Вот наше скрытое число -->
<input type="submit" value="Отправить">
</form>