Welcome aboard! We are happy you are here and wish you good net-raft!
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
</head>
<body>
<select id="demo"></select>
<script>
$(document).ready(function () {
$.ajax({
type: "GET",
url: "/project/macho2/sl_2gb1jP3cVO202173729/XMLFile.xml",
cache: false,
dataType: "xml",
success: function(xml) {
$(xml).find('TECH').each(function(){
$("#demo").html($("#demo").html() + "<option>" + $(this).text() + "</option>");
});
}
});
});
</script>
</body>
</html>
The most helpful JQUERY solutions