Proba el siguiente código y contame
Código:
$('input').change(function () {
if(this.id.match(/^first([0-9])$/) ){
var id= this.id.match(/[0-9]$/);
$('#label-au-'+id).html($('#first'+id).val());
}
if(this.id.match(/^last[0-9]$/) ){
var id= this.id.match(/[0-9]$/);
$('#label-au-'+id).html($('#label-au-'+id).html() + ', ' + $('#last'+id).val());
}
});
Seguro que se puede optimizar pero deberia funcionar. Saludos!!!