$(document).ready(function(){
	function updatelist(){
		listname=$('#oc_wiz_man').val();
		$('#oc_wiz_hs').empty();
		if(listname==''){
			$('#oc_wiz_hs').append('<option value=""> -- Select Manufacturer -- </option>');
		}else{
			$('#oc_wiz_hs').append('<option value=""> -- Any -- </option>');
			for (handset in phonelist[listname]){
				$('#oc_wiz_hs').append('<option value="'+handset+'">'+phonelist[listname][handset]+'</option>');
			}
		}
		
	}
	$('#oc_wiz_man').after('<label for="oc_wiz_hs">Model:</label><select id="oc_wiz_hs" name="hs"><option value=""> -- Select Manufacturer -- </option></select>');
	
	updatelist();
	$('#oc_wiz_man').change(function(){updatelist()});	
});

