function remove_upload()
{
	jQuery(".remove_upl").click(function(){
		jQuery(this).parent().parent().remove();
	});
}

jQuery(document).ready(function(){
	jQuery("#more_img td span").click(function(){
		jQuery(this).parent().parent().parent().find("tr[id!='more_img']:last").after("<tr><td style=\"text-align: right;\">Zdjęcie:</td><td><input name=\"user_image[]\" type=\"file\" /><span class=\"remove_upl\">usuń</span></td></tr>");
		remove_upload();
	});
});
