
// prepare the form when the DOM is ready 
$(document).ready(function() { 
	
//	$('#btnaddcos').addProdus('#cod','#buc','#starecos','../v_actualizare-cos.php');
	
    // bind form using ajaxForm 
    $('#formdetaliicos').ajaxForm({ 
        // dataType identifies the expected content type of the server response 		
		//dataType:  'json', 
		
		// target identifies the element(s) to update with the server response 
        target: '#formdetaliicos',
 
        // success identifies the function to invoke when the server response 
        // has been received 
        success: function() { 
            RefreshStareCos('#starecos','../v_actualizare-cos.php', 'detaliicos'); 
        } 
    }); 
});

