// Function to update selected boxes
// Clear the container
// Loop through selected options and create boxes
// Create the remove button
removeBtn.textContent = "×"; // Cross symbol for removal
// Add click event to remove button
option.selected = false; // Deselect the option
updateSelectedBoxes(); // Update the boxes
// Append the button to the box
// Append the box to the container
// Add an event listener to the select element
//