Не он?
$("#btn-copy").click(function () {
021 $("#cpParams").find("input,select").each(function () {
022 var name = $(this).attr("name");
023 if (!!name) {
024 var value = $(this).val();
025 var id2 = name.replace(/'cp_/g, "'cp_sewer_");
026 id2 = id2.replace(/'/g, "\\'");
027
028 $("[name='" + id2 + "']").val(value);
029 }
030 });
031 });
032
033 $("#CPResource").change(function () {
034 var id = $("#CPResource").val();
035 $("#CPSource").foo("t" + id);
036 $("#CPType").foo("t" + id);
037 });
038 var id = $("#CPResource").val();
039 $("#CPSource option:not(.t" + id + ")").appendTo($("#CPSource").siblings("div.hiddenOptions"));
040 $("#CPType option:not(.t" + id + ")").appendTo($("#CPType").siblings("div.hiddenOptions"));
041
042 $("#CPSewerResource").change(function () {
043 var id = $("#CPSewerResource").val();
044 $("#CPSewerSource").foo("t" + id);
045 $("#CPSewerType").foo("t" + id);
046 });
047 var id = $("#CPSewerResource").val();
048 $("#CPSewerSource option:not(.t" + id + ")").appendTo($("#CPSewerSource").siblings("div.hiddenOptions"));
049 $("#CPSewerType option:not(.t" + id + ")").appendTo($("#CPSewerType").siblings("div.hiddenOptions"));
050