Объясните пожалуйста почему при нажатии на сабмит кнопку не появляется алерт
<html>
<head>
<script src="http://code.jquery.com/jquery-2.0.0b2.js"></script>
</head>
<body>
<select id="select1">
<option>
услуги
</option>
<option>
о нас
</option>
</select>
<div id="form"></div>
<script>
function formation(){
$('#form').append('<form id="form" action="javascript:void(null);" onsubmit="call(this.title.value)" method="post"> <input type="text" style="width:98%" id="title" name="title"> <input id="submit" type="submit" value="Принять изменения"></form>')
}
function print_forms(){
formation();
}
function call(title) {
alert(title)
}
$('#select1').change(function(){
print_forms()
})
</script>
</body>
</html>