function add_input(obj)
{
var new_input=document.createElement('div');
new_input.innerHTML='<select name="pattern_type[]">' +
'<option disabled>Выберите Тип Шаблона</option>' +
'<option value="content">Контент</option>' +
'<option value="title">Название</option>' +
'<option value="photo">Картинка</option>' +
'<option value="file">Файл</option>' +
'<option value="delet_text"> Удалить текст</option>' +
'<option value="delet_pattern"> Удалить шаблон</option>' +
'</select> <input name="pattern_value[]"> <input type="button" value="-" onclick="del_input(this.parentNode)">';
if (obj.nextSibling){
console.log(obj.nextSibling);
document.getElementById('inputi').insertBefore(new_input,obj.nextSibling)
}else{ document.getElementById('inputi').appendChild(new_input);}
}
if (obj.nextSibling){
console.log(obj.nextSibling);
document.getElementById('inputi').insertBefore(new_input,obj.nextSibling)
}else{ document.getElementById('inputi').appendChild(new_input);}
document.getElementById('inputi').appendChild(new_input);