diff --git a/REMAN/REMAN/JsFunctions.cs b/REMAN/REMAN/JsFunctions.cs
new file mode 100644
index 0000000..a6ab6a2
--- /dev/null
+++ b/REMAN/REMAN/JsFunctions.cs
@@ -0,0 +1,13 @@
+using Microsoft.AspNetCore.Components;
+using Microsoft.JSInterop;
+
+namespace REMAN
+{
+ public static class JsFunctions
+ {
+ public static async Task FocusAsync(this ElementReference elementRef, IJSRuntime jsRuntime)
+ {
+ await jsRuntime.InvokeVoidAsync("Js.focus", elementRef);
+ }
+ }
+}
diff --git a/REMAN/REMAN/Pages/PickUp.razor b/REMAN/REMAN/Pages/PickUp.razor
index 504e94e..2839458 100644
--- a/REMAN/REMAN/Pages/PickUp.razor
+++ b/REMAN/REMAN/Pages/PickUp.razor
@@ -4,6 +4,7 @@
@using NKC.Data.DbModels
@using REMAN.Components
@using REMAN.Data
+@using static JsFunctions
@inject AuthenticationStateProvider AuthStateProvider
@inject IJSRuntime JSRuntime
@@ -11,6 +12,7 @@