I have the following vba code set-up to change the worksheet upon selecting a dropdown list item:

Private Sub Worksheet_Change(ByVal Target As Range)
On Error Resume Next
If Not Intersect(Target, Range("C6")) Is Nothing Then
Application.ScreenUpdating = False
Sheets(Range("AB13").Value).Select
Application.ScreenUpdating = True
End If
End Sub

I would like the dropdown list to show another item (the same one every time) upon returning to the worksheet.

What code would accomplish this and where do i insert it (before the code above, somewhere in between the code above or after the code above)?