diff --git a/src/lib/components/ui/LocationSearchBox.svelte b/src/lib/components/ui/LocationSearchBox.svelte
new file mode 100644
index 0000000..bb3789e
--- /dev/null
+++ b/src/lib/components/ui/LocationSearchBox.svelte
@@ -0,0 +1,104 @@
+
+
+
+
showResults = true}
+ onkeydown={handleKey}
+ />
+
+ {#if showResults && results.length}
+
+ {#each results as loc, i}
+ - choose(loc)}
+ >
+ {loc.n}
+
+ {#if loc.c}
+ {loc.c}
+ {/if}
+
+ {/each}
+
+ {/if}
+
\ No newline at end of file
diff --git a/src/lib/components/ui/Textbox.svelte b/src/lib/components/ui/Textbox.svelte
index 3026bec..3f38d5a 100644
--- a/src/lib/components/ui/Textbox.svelte
+++ b/src/lib/components/ui/Textbox.svelte
@@ -1,6 +1,6 @@