$('div:eq(N)');
// функция генерирует случайное число
function getRandomInt(min, max){
return Math.floor(Math.random() * (max - min + 1)) + min;
}
$("#email").focusout(function(e){
$("input#name").val( $(this).val().split("@")[0] + getRandomInt(1000, 9999) );
})