// JavaScript Document
function buildSelect(x) {
  if (x.value == "AK" || x.value == "HI" ) { 
    /* set choices 1 and 2 */
    option0 = new Option("  Please Select  ",0)
    option1 = new Option("Fedex Ground Delivery","GROUND_HOME_DELIVERY")
    option2 = new Option("Fedex 2 DAY","FEDEX_2_DAY")
		option3 = new Option("","")
    // write them
    document.estShipfrm.serviceType.options[0] = option0
    document.estShipfrm.serviceType.options[1] = option1
    document.estShipfrm.serviceType.options[2] = option2
		document.estShipfrm.serviceType.options[3] = null
    return;
    } else  { 
    /* set choices 3 and 4 */ 
    option0 = new Option("  Please Select  ",0)
    option1 = new Option("Fedex Ground Delivery","GROUND_HOME_DELIVERY")
    option2 = new Option("Fedex Express Saver","FEDEX_EXPRESS_SAVER")
		option3 = new Option("Fedex 2 DAY","FEDEX_2_DAY")
    // write them
    document.estShipfrm.serviceType.options[0] = option0
    document.estShipfrm.serviceType.options[1] = option1
    document.estShipfrm.serviceType.options[2] = option2
		document.estShipfrm.serviceType.options[3] = option3
    return;
    }
}