DIGIUS,
<!DOCTYPE HTML>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
<style type="text/css">
</style>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
</head>
<body>
<input type="text" id="payments1111" value="0|1|2|3|4|7|6|7|8">
<section id="content2">
<div style="display: none;" id="inp">
<input style="width: 96.9%;" type="text" value="Название товара" title="Название товара" id="Iname" onfocus="if(this.value==this.title) this.value='';" onblur="if(this.value=='') this.value=this.title;">
<input style="width: 96.9%;" type="text" value="Размеры (без пробела через запятую)" title="Размеры (без пробела через запятую)" id="Isize" onfocus="if(this.value==this.title) this.value='';" onblur="if(this.value=='') this.value=this.title;">
<input style="width: 96.9%;" type="text" value="Рост (без см,пробела и через запятую)" title="Рост (без см,пробела и через запятую)" id="Iheight" onfocus="if(this.value==this.title) this.value='';" onblur="if(this.value=='') this.value=this.title;">
<input style="width: 96.9%;" type="text" value="Цвет (без пробела через запятую)" title="Цвет (без пробела через запятую)" id="Icolor" onfocus="if(this.value==this.title) this.value='';" onblur="if(this.value=='') this.value=this.title;">
<input style="width: 96.9%;" type="text" value="Материал (без заглавных букв, пробелов и через запятую)" title="Материал (без заглавных букв, пробелов и через запятую)" id="Imaterial" onfocus="if(this.value==this.title) this.value='';" onblur="if(this.value=='') this.value=this.title;">
<input style="width: 96.9%;" type="text" value="Цена (без руб; пробелов и через точку)" title="Цена (без руб; пробелов и через точку)" id="Iprice" onfocus="if(this.value==this.title) this.value='';" onblur="if(this.value=='') this.value=this.title;">
</div>
</section>
<script>
$('#inp').fadeOut(500);
var ar = $('#payments1111').val().split('|');
$('#payments1111').val(ar[7]);
$("#Iname").val(ar[1]);
$("#Isize").val(ar[4]);
$("#Iheight").val(ar[5]);
$("#Icolor").val(ar[6]);
$("#Imaterial").val(ar[7]);
$("#Iprice").val(ar[8]);
$('#inp').fadeIn(500);
</script>
</body>
</html>