.form-check-other {
position: relative;
}
.form-check-other .form-check-label{
position: absolute!important;
left: 0;
}
name="entry.941106590.other_option_response"document.addEventListener("DOMContentLoaded", function() {
let checkboxes = document.querySelectorAll('.form-check>.form-check-input');
[].forEach.call(checkboxes, function (checkbox) {
let label = document.createElement('LABEL');
label.for = checkbox.id;
label.className = "form-check-label";
checkbox.after(label);
});
});
<input class="form-control" type="text" name="entry.941106590.other_option_response" value="" placeholder="Иное" oninput="document.getElementById(this.name).checked = this.value?true:false">