window.addEventListener('DOMContentLoaded', function() {
const contextSearchType = document.getElementById("context-search-type");
const contextSearchText = document.getElementById("context-search-text");
const contextSearchResponse = document.getElementById("context-search-response");
const contextSearchButton = document.getElementById("context-search-button");
contextSearchButton.addEventListener('click', function() {
const context = contextSearchType.options[contextSearchType.selectedIndex].value;
console.log(context);
});
});