$(document).ready(function(){
	$(".batext").keyup(function(e){
		$(this).parent().find(".batext").not(this).val($(this).val());
	});
});