Thanks BrewManNH, Worked !!
The only problem is that when I select the second value, it does not enable the first then in this case I had to do it this way:
#include <ComboConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 491, 298, 192, 114)
$box = GUICtrlCreateInput("", 104, 136, 121, 21, BitOR($GUI_SS_DEFAULT_INPUT,$ES_CENTER))
$box2 = GUICtrlCreateInput("", 104, 168, 121, 21, BitOR($GUI_SS_DEFAULT_INPUT,$ES_CENTER))
$box3 = GUICtrlCreateInput("", 104, 200, 121, 21, BitOR($GUI_SS_DEFAULT_INPUT,$ES_CENTER))
$Combo1 = GUICtrlCreateCombo("Combo1", 280, 64, 145, 25, BitOR($CBS_DROPDOWN,$CBS_AUTOHSCROLL))
GUICtrlSetData(-1, "Item1|Item2|Item3")
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
case $Combo1
if GUICtrlRead($combo1) = "Item1" then
GUICtrlSetState($box2, $GUI_ENABLE)
GUICtrlSetState($box3, $GUI_ENABLE)
GUICtrlSetState($box, $GUI_DISABLE)
elseif GUICtrlRead($combo1) = "Item2" then
GUICtrlSetState($box, $GUI_ENABLE)
GUICtrlSetState($box3, $GUI_ENABLE)
GUICtrlSetState($box2, $GUI_DISABLE)
elseif GUICtrlRead($combo1) = "Item3" then
GUICtrlSetState($box, $GUI_ENABLE)
GUICtrlSetState($box2, $GUI_ENABLE)
GUICtrlSetState($box3, $GUI_DISABLE)
EndIf
EndSwitch
WEnd